8ff1ee479ea8408bba21386024b945972ed7fe2d,src/main/java/lumien/randomthings/block/BlockRainShield.java,BlockRainShield,neighborChanged,#IBlockState#World#BlockPos#Block#,107

Before Change


	@Override
	public void neighborChanged(IBlockState state, World worldIn, BlockPos pos, Block neighborBlock)
	{
		((TileEntityRainShield) worldIn.getTileEntity(pos)).neighborChanged(state, worldIn, pos, neighborBlock);
		checkForDrop(worldIn, pos, state);
	}

After Change


	public void neighborChanged(IBlockState state, World worldIn, BlockPos pos, Block neighborBlock)
	{
		TileEntity te;
		if ((te = worldIn.getTileEntity(pos)) instanceof TileEntityRainShield)
		{
			((TileEntityRainShield) te).neighborChanged(state, worldIn, pos, neighborBlock);
		}
		
		checkForDrop(worldIn, pos, state);